From: Travis Kemen Date: Thu, 8 May 2008 14:59:37 +0000 (+0000) Subject: fix missing then Signed-off-by: Mark Kelly X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22/%22https:/collectd.org/%22?a=commitdiff_plain;h=4841a6504c5303870ad95f192e68b61c5788f54a;p=openwrt%2Fsvn-archive%2Fpackages.git fix missing then Signed-off-by: Mark Kelly SVN-Revision: 11075 --- diff --git a/utils/vim/Makefile b/utils/vim/Makefile index 191018f5e..92e204cd4 100644 --- a/utils/vim/Makefile +++ b/utils/vim/Makefile @@ -160,7 +160,8 @@ define Package/vim-full/postinst if [ $${IPKG_INSTROOT} != / ] then if [ -d /usr/share/ ] - ln -s $${IPKG_INSTROOT}/usr/share/vim/ /usr/share/ + then + ln -s $${IPKG_INSTROOT}/usr/share/vim/ /usr/share/ fi fi endef @@ -170,7 +171,8 @@ define Package/vim/postinst if [ $${IPKG_INSTROOT} != / ] then if [ -d /usr/share/ ] - ln -s $${IPKG_INSTROOT}/usr/share/vim/vimrc /usr/share/vim/vimrc + then + ln -s $${IPKG_INSTROOT}/usr/share/vim/vimrc /usr/share/vim/vimrc fi fi endef